docs: adopt the Developer Certificate of Origin (DCO) - #60
Merged
Conversation
Add the DCO 1.1 text (DCO) and require contributions to be signed off via git commit -s, documented in CONTRIBUTING.md. Enforced by the DCO check now installed on the repo. Satisfies the OpenSSF Best Practices silver dco criterion. Signed-off-by: Nelson Spence <nelson@projectnavi.ai>
Nelson Spence (Fieldnote-Echo)
requested a review
from Navi Bot (project-navi-bot)
as a code owner
May 25, 2026 20:07
Review Summary by QodoAdd Developer Certificate of Origin (DCO) documentation
WalkthroughsDescription• Adds Developer Certificate of Origin (DCO 1.1) text file • Documents DCO sign-off requirement in CONTRIBUTING.md • Provides git commands for signing off commits • Satisfies OpenSSF Best Practices silver criterion Diagramflowchart LR
A["DCO 1.1 License Text"] --> B["DCO File"]
C["Sign-off Requirements"] --> D["CONTRIBUTING.md"]
E["Git Commands"] --> D
B --> F["OpenSSF Compliance"]
D --> F
File Changes1. DCO
|
There was a problem hiding this comment.
Code Review
This pull request introduces the Developer Certificate of Origin (DCO) requirements to the project. It adds a new DCO file containing the license text and updates CONTRIBUTING.md with instructions on how contributors can sign off on their commits. The review feedback suggests improving the relative link to the DCO file in CONTRIBUTING.md by using ./DCO instead of DCO to ensure better compatibility across different Markdown parsers and IDEs.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Signed-off-by: Nelson Spence <nelson@projectnavi.ai>
project-navi-bot
approved these changes
May 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the DCO 1.1 text (
DCO) and a CONTRIBUTING.md section requiring contributions to be signed off (git commit -s), enforced by the DCO check now installed on the repo. Satisfies the OpenSSF Best Practices silverdcocriterion.This PR's own commit is signed off, so it should pass the DCO check (a working demonstration). Note: DCO sign-off is separate from commit signing;
git commit -s -Sdoes both.